home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / interp / perl5.005.tar.gz / perl5.005.tar / perl5.005 / README.os2 < prev    next >
Text File  |  1998-07-14  |  49KB  |  1,607 lines

  1. If you read this file _as_is_, just ignore the funny characters you
  2. see. It is written in the POD format (see perlpod manpage) which is
  3. specially designed to be readable as is.
  4.  
  5. =head1 NAME
  6.  
  7. perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
  8.  
  9. =head1 SYNOPSIS
  10.  
  11. One can read this document in the following formats:
  12.  
  13.     man perlos2
  14.     view perl perlos2
  15.     explorer perlos2.html
  16.     info perlos2
  17.  
  18. to list some (not all may be available simultaneously), or it may
  19. be read I<as is>: either as F<README.os2>, or F<pod/perlos2.pod>.
  20.  
  21. To read the F<.INF> version of documentation (B<very> recommended)
  22. outside of OS/2, one needs an IBM's reader (may be available on IBM
  23. ftp sites (?)  (URL anyone?)) or shipped with PC DOS 7.0 and IBM's
  24. Visual Age C++ 3.5.
  25.  
  26. A copy of a Win* viewer is contained in the "Just add OS/2 Warp" package
  27.  
  28.   ftp://ftp.software.ibm.com/ps/products/os2/tools/jaow/jaow.zip
  29.  
  30. in F<?:\JUST_ADD\view.exe>. This gives one an access to EMX's 
  31. F<.INF> docs as well (text form is available in F</emx/doc> in 
  32. EMX's distribution).
  33.  
  34. Note that if you have F<lynx.exe> installed, you can follow WWW links
  35. from this document in F<.INF> format. If you have EMX docs installed 
  36. correctly, you can follow library links (you need to have C<view emxbook>
  37. working by setting C<EMXBOOK> environment variable as it is described
  38. in EMX docs).
  39.  
  40. =cut
  41.  
  42. Contents
  43.  
  44.  perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT. 
  45.  
  46.       NAME 
  47.       SYNOPSIS 
  48.       DESCRIPTION 
  49.          -  Target 
  50.          -  Other OSes 
  51.          -  Prerequisites 
  52.          -  Starting Perl programs under OS/2 (and DOS and...)
  53.          -  Starting OS/2 (and DOS) programs under Perl 
  54.       Frequently asked questions 
  55.          -  I cannot run external programs 
  56.          -  I cannot embed perl into my program, or use perl.dll from my program. 
  57.          -  `` and pipe-open do not work under DOS. 
  58.          -  Cannot start find.exe "pattern" file
  59.       INSTALLATION 
  60.          -  Automatic binary installation 
  61.          -  Manual binary installation 
  62.          -  Warning 
  63.       Accessing documentation 
  64.          -  OS/2 .INF file 
  65.          -  Plain text 
  66.          -  Manpages 
  67.          -  HTML 
  68.          -  GNU info files 
  69.          -  .PDF files 
  70.          -  LaTeX docs 
  71.       BUILD 
  72.          -  Prerequisites 
  73.          -  Getting perl source 
  74.          -  Application of the patches 
  75.          -  Hand-editing 
  76.          -  Making 
  77.          -  Testing 
  78.          -  Installing the built perl 
  79.          -  a.out-style build 
  80.       Build FAQ 
  81.          -  Some / became \ in pdksh. 
  82.          -  'errno' - unresolved external 
  83.          -  Problems with tr 
  84.          -  Some problem (forget which ;-) 
  85.          -  Library ... not found 
  86.          -  Segfault in make 
  87.       Specific (mis)features of EMX port 
  88.          -  setpriority, getpriority 
  89.          -  system() 
  90.          -  extproc on the first line
  91.          -  Additional modules: 
  92.          -  Prebuilt methods: 
  93.          -  Misfeatures 
  94.          -  Modifications 
  95.       Perl flavors 
  96.          -  perl.exe 
  97.          -  perl_.exe 
  98.          -  perl__.exe 
  99.          -  perl___.exe 
  100.          -  Why strange names? 
  101.          -  Why dynamic linking? 
  102.          -  Why chimera build? 
  103.       ENVIRONMENT 
  104.          -  PERLLIB_PREFIX 
  105.          -  PERL_BADLANG 
  106.          -  PERL_BADFREE 
  107.          -  PERL_SH_DIR 
  108.          -  TMP or TEMP 
  109.       Evolution 
  110.          -  Priorities 
  111.          -  DLL name mangling 
  112.          -  Threading 
  113.          -  Calls to external programs 
  114.          -  Memory allocation 
  115.       AUTHOR 
  116.       SEE ALSO 
  117.   
  118. =head1 DESCRIPTION
  119.  
  120. =head2 Target
  121.  
  122. The target is to make OS/2 the best supported platform for
  123. using/building/developing Perl and I<Perl applications>, as well as
  124. make Perl the best language to use under OS/2. The secondary target is
  125. to try to make this work under DOS and Win* as well (but not B<too> hard).
  126.  
  127. The current state is quite close to this target. Known limitations:
  128.  
  129. =over 5
  130.  
  131. =item *
  132.  
  133. Some *nix programs use fork() a lot, but currently fork() is not
  134. supported after I<use>ing dynamically loaded extensions.
  135.  
  136. =item *
  137.  
  138. You need a separate perl executable F<perl__.exe> (see L<perl__.exe>)
  139. to use PM code in your application (like the forthcoming Perl/Tk).
  140.  
  141. =item *
  142.  
  143. There is no simple way to access WPS objects. The only way I know
  144. is via C<OS2::REXX> extension (see L<OS2::REXX>), and we do not have access to
  145. convenience methods of Object-REXX. (Is it possible at all? I know
  146. of no Object-REXX API.)
  147.  
  148. =back
  149.  
  150. Please keep this list up-to-date by informing me about other items.
  151.  
  152. =head2 Other OSes
  153.  
  154. Since OS/2 port of perl uses a remarkable EMX environment, it can
  155. run (and build extensions, and - possibly - be build itself) under any
  156. environment which can run EMX. The current list is DOS,
  157. DOS-inside-OS/2, Win0.3*, Win0.95 and WinNT. Out of many perl flavors,
  158. only one works, see L<"perl_.exe">.
  159.  
  160. Note that not all features of Perl are available under these
  161. environments. This depends on the features the I<extender> - most
  162. probably RSX - decided to implement.
  163.  
  164. Cf. L<Prerequisites>.
  165.  
  166. =head2 Prerequisites
  167.  
  168. =over 6
  169.  
  170. =item EMX
  171.  
  172. EMX runtime is required (may be substituted by RSX). Note that
  173. it is possible to make F<perl_.exe> to run under DOS without any
  174. external support by binding F<emx.exe>/F<rsx.exe> to it, see L<emxbind>. Note
  175. that under DOS for best results one should use RSX runtime, which
  176. has much more functions working (like C<fork>, C<popen> and so on). In
  177. fact RSX is required if there is no VCPI present. Note the
  178. RSX requires DPMI.
  179.  
  180. Only the latest runtime is supported, currently C<0.9c>. Perl may run
  181. under earlier versions of EMX, but this is not tested.
  182.  
  183. One can get different parts of EMX from, say
  184.  
  185.   ftp://ftp.cdrom.com/pub/os2/emx09c/
  186.   ftp://hobbes.nmsu.edu/os2/unix/emx09c/
  187.  
  188. The runtime component should have the name F<emxrt.zip>.
  189.  
  190. B<NOTE>. It is enough to have F<emx.exe>/F<rsx.exe> on your path. One
  191. does not need to specify them explicitly (though this
  192.  
  193.   emx perl_.exe -de 0
  194.  
  195. will work as well.)
  196.  
  197. =item RSX
  198.  
  199. To run Perl on DPMI platforms one needs RSX runtime. This is
  200. needed under DOS-inside-OS/2, Win0.3*, Win0.95 and WinNT (see 
  201. L<"Other OSes">). RSX would not work with VCPI
  202. only, as EMX would, it requires DMPI.
  203.  
  204. Having RSX and the latest F<sh.exe> one gets a fully functional
  205. B<*nix>-ish environment under DOS, say, C<fork>, C<``> and
  206. pipe-C<open> work. In fact, MakeMaker works (for static build), so one
  207. can have Perl development environment under DOS. 
  208.  
  209. One can get RSX from, say
  210.  
  211.   ftp://ftp.cdrom.com/pub/os2/emx09c/contrib
  212.   ftp://ftp.uni-bielefeld.de/pub/systems/msdos/misc
  213.   ftp://ftp.leo.org/pub/comp/os/os2/leo/devtools/emx+gcc/contrib
  214.  
  215. Contact the author on C<rainer@mathematik.uni-bielefeld.de>.
  216.  
  217. The latest F<sh.exe> with DOS hooks is available at
  218.  
  219.   ftp://ftp.math.ohio-state.edu/pub/users/ilya/os2/sh_dos.zip
  220.  
  221. =item HPFS
  222.  
  223. Perl does not care about file systems, but to install the whole perl
  224. library intact one needs a file system which supports long file names.
  225.  
  226. Note that if you do not plan to build the perl itself, it may be
  227. possible to fool EMX to truncate file names. This is not supported,
  228. read EMX docs to see how to do it.
  229.  
  230. =item pdksh
  231.  
  232. To start external programs with complicated command lines (like with
  233. pipes in between, and/or quoting of arguments), Perl uses an external
  234. shell. With EMX port such shell should be named <sh.exe>, and located
  235. either in the wired-in-during-compile locations (usually F<F:/bin>),
  236. or in configurable location (see L<"PERL_SH_DIR">).
  237.  
  238. For best results use EMX pdksh. The soon-to-be-available standard
  239. binary (5.2.12?) runs under DOS (with L<RSX>) as well, meanwhile use
  240. the binary from
  241.  
  242.   ftp://ftp.math.ohio-state.edu/pub/users/ilya/os2/sh_dos.zip
  243.  
  244. =back
  245.  
  246. =head2 Starting Perl programs under OS/2 (and DOS and...)
  247.  
  248. Start your Perl program F<foo.pl> with arguments C<arg1 arg2 arg3> the
  249. same way as on any other platform, by
  250.  
  251.     perl foo.pl arg1 arg2 arg3
  252.  
  253. If you want to specify perl options C<-my_opts> to the perl itself (as
  254. opposed to to your program), use
  255.  
  256.     perl -my_opts foo.pl arg1 arg2 arg3
  257.  
  258. Alternately, if you use OS/2-ish shell, like CMD or 4os2, put
  259. the following at the start of your perl script:
  260.  
  261.     extproc perl -S -my_opts
  262.  
  263. rename your program to F<foo.cmd>, and start it by typing
  264.  
  265.     foo arg1 arg2 arg3
  266.  
  267. Note that because of stupid OS/2 limitations the full path of the perl
  268. script is not available when you use C<extproc>, thus you are forced to
  269. use C<-S> perl switch, and your script should be on path. As a plus
  270. side, if you know a full path to your script, you may still start it
  271. with 
  272.  
  273.     perl ../../blah/foo.cmd arg1 arg2 arg3
  274.  
  275. (note that the argument C<-my_opts> is taken care of by the C<extproc> line
  276. in your script, see L<C<extproc> on the first line>).
  277.  
  278. To understand what the above I<magic> does, read perl docs about C<-S>
  279. switch - see L<perlrun>, and cmdref about C<extproc>:
  280.  
  281.     view perl perlrun
  282.     man perlrun
  283.     view cmdref extproc
  284.     help extproc
  285.  
  286. or whatever method you prefer.
  287.  
  288. There are also endless possibilities to use I<executable extensions> of
  289. 4os2, I<associations> of WPS and so on... However, if you use
  290. *nixish shell (like F<sh.exe> supplied in the binary distribution),
  291. you need to follow the syntax specified in L<perlrun/"Switches">.
  292.  
  293. Note that B<-S> switch enables a search with additional extensions 
  294. F<.cmd>, F<.btm>, F<.bat>, F<.pl> as well.
  295.  
  296. =head2 Starting OS/2 (and DOS) programs under Perl
  297.  
  298. This is what system() (see L<perlfunc/system>), C<``> (see
  299. L<perlop/"I/O Operators">), and I<open pipe> (see L<perlfunc/open>)
  300. are for. (Avoid exec() (see L<perlfunc/exec>) unless you know what you
  301. do).
  302.  
  303. Note however that to use some of these operators you need to have a
  304. sh-syntax shell installed (see L<"Pdksh">, 
  305. L<"Frequently asked questions">), and perl should be able to find it
  306. (see L<"PERL_SH_DIR">).
  307.  
  308. The cases when the shell is used are:
  309.  
  310. =over
  311.  
  312. =item 1
  313.  
  314. One-argument system() (see L<perlfunc/system>), exec() (see L<perlfunc/exec>)
  315. with redirection or shell meta-characters;
  316.  
  317. =item 2
  318.  
  319. Pipe-open (see L<perlfunc/open>) with the command which contains redirection 
  320. or shell meta-characters;
  321.  
  322. =item 3
  323.  
  324. Backticks C<``> (see L<perlop/"I/O Operators">) with the command which contains
  325. redirection or shell meta-characters;
  326.  
  327. =item 4
  328.  
  329. If the executable called by system()/exec()/pipe-open()/C<``> is a script
  330. with the "magic" C<#!> line or C<extproc> line which specifies shell;
  331.  
  332. =item 5
  333.  
  334. If the executable called by system()/exec()/pipe-open()/C<``> is a script
  335. without "magic" line, and C<$ENV{EXECSHELL}> is set to shell;
  336.  
  337. =item 6
  338.  
  339. If the executable called by system()/exec()/pipe-open()/C<``> is not
  340. found;
  341.  
  342. =item 7
  343.  
  344. For globbing (see L<perlfunc/glob>, L<perlop/"I/O Operators">).
  345.  
  346. =back
  347.  
  348. For the sake of speed for a common case, in the above algorithms 
  349. backslashes in the command name are not considered as shell metacharacters.
  350.  
  351. Perl starts scripts which begin with cookies
  352. C<extproc> or C<#!> directly, without an intervention of shell.  Perl uses the
  353. same algorithm to find the executable as F<pdksh>: if the path
  354. on C<#!> line does not work, and contains C</>, then the executable
  355. is searched in F<.> and on C<PATH>.  To find arguments for these scripts
  356. Perl uses a different algorithm than F<pdksh>: up to 3 arguments are 
  357. recognized, and trailing whitespace is stripped.
  358.  
  359. If a script
  360. does not contain such a cooky, then to avoid calling F<sh.exe>, Perl uses
  361. the same algorithm as F<pdksh>: if C<$ENV{EXECSHELL}> is set, the
  362. script is given as the first argument to this command, if not set, then
  363. C<$ENV{COMSPEC} /c> is used (or a hardwired guess if C<$ENV{COMSPEC}> is
  364. not set).
  365.  
  366. If starting scripts directly, Perl will use exactly the same algorithm as for 
  367. the search of script given by B<-S> command-line option: it will look in
  368. the current directory, then on components of C<$ENV{PATH}> using the 
  369. following order of appended extensions: no extension, F<.cmd>, F<.btm>, 
  370. F<.bat>, F<.pl>.
  371.  
  372. Note that Perl will start to look for scripts only if OS/2 cannot start the
  373. specified application, thus C<system 'blah'> will not look for a script if 
  374. there is an executable file F<blah.exe> I<anywhere> on C<PATH>.  
  375.  
  376. Note also that executable files on OS/2 can have an arbitrary extension, 
  377. but F<.exe> will be automatically appended if no dot is present in the name.  
  378. The workaround as as simple as that:  since F<blah.> and F<blah> denote the 
  379. same file, to start an executable residing in file F<n:/bin/blah> (no 
  380. extension) give an argument C<n:/bin/blah.> to system().
  381.  
  382. The last note is that currently it is not straightforward to start PM 
  383. programs from VIO (=text-mode) Perl process and visa versa.  Either ensure
  384. that shell will be used, as in C<system 'cmd /c epm'>, or start it using
  385. optional arguments to system() documented in C<OS2::Process> module.  This
  386. is considered a bug and should be fixed soon.
  387.  
  388.  
  389. =head1 Frequently asked questions
  390.  
  391. =head2 I cannot run external programs
  392.  
  393. =over 4
  394.  
  395. =item
  396.  
  397. Did you run your programs with C<-w> switch? See 
  398. L<Starting OS/2 (and DOS) programs under Perl>.
  399.  
  400. =item
  401.  
  402. Do you try to run I<internal> shell commands, like C<`copy a b`>
  403. (internal for F<cmd.exe>), or C<`glob a*b`> (internal for ksh)? You
  404. need to specify your shell explicitly, like C<`cmd /c copy a b`>,
  405. since Perl cannot deduce which commands are internal to your shell.
  406.  
  407. =back
  408.  
  409. =head2 I cannot embed perl into my program, or use F<perl.dll> from my
  410. program. 
  411.  
  412. =over 4
  413.  
  414. =item Is your program EMX-compiled with C<-Zmt -Zcrtdll>?
  415.  
  416. If not, you need to build a stand-alone DLL for perl. Contact me, I
  417. did it once. Sockets would not work, as a lot of other stuff.
  418.  
  419. =item Did you use L<ExtUtils::Embed>?
  420.  
  421. I had reports it does not work. Somebody would need to fix it.
  422.  
  423. =back
  424.  
  425. =head2 C<``> and pipe-C<open> do not work under DOS.
  426.  
  427. This may a variant of just L<"I cannot run external programs">, or a
  428. deeper problem. Basically: you I<need> RSX (see L<"Prerequisites">)
  429. for these commands to work, and you may need a port of F<sh.exe> which
  430. understands command arguments. One of such ports is listed in
  431. L<"Prerequisites"> under RSX. Do not forget to set variable
  432. C<L<"PERL_SH_DIR">> as well.
  433.  
  434. DPMI is required for RSX.
  435.  
  436. =head2 Cannot start C<find.exe "pattern" file>
  437.  
  438. Use one of
  439.  
  440.   system 'cmd', '/c', 'find "pattern" file';
  441.   `cmd /c 'find "pattern" file'`
  442.  
  443. This would start F<find.exe> via F<cmd.exe> via C<sh.exe> via
  444. C<perl.exe>, but this is a price to pay if you want to use
  445. non-conforming program. In fact F<find.exe> cannot be started at all
  446. using C library API only. Otherwise the following command-lines were
  447. equivalent:
  448.  
  449.   find "pattern" file
  450.   find pattern file
  451.  
  452. =head1 INSTALLATION
  453.  
  454. =head2 Automatic binary installation
  455.  
  456. The most convenient way of installing perl is via perl installer
  457. F<install.exe>. Just follow the instructions, and 99% of the
  458. installation blues would go away. 
  459.  
  460. Note however, that you need to have F<unzip.exe> on your path, and
  461. EMX environment I<running>. The latter means that if you just
  462. installed EMX, and made all the needed changes to F<Config.sys>,
  463. you may need to reboot in between. Check EMX runtime by running
  464.  
  465.     emxrev
  466.  
  467. A folder is created on your desktop which contains some useful
  468. objects.
  469.  
  470. B<Things not taken care of by automatic binary installation:>
  471.  
  472. =over 15
  473.  
  474. =item C<PERL_BADLANG>
  475.  
  476. may be needed if you change your codepage I<after> perl installation,
  477. and the new value is not supported by EMX. See L<"PERL_BADLANG">.
  478.  
  479. =item C<PERL_BADFREE>
  480.  
  481. see L<"PERL_BADFREE">.
  482.  
  483. =item F<Config.pm>
  484.  
  485. This file resides somewhere deep in the location you installed your
  486. perl library, find it out by 
  487.  
  488.   perl -MConfig -le "print $INC{'Config.pm'}"
  489.  
  490. While most important values in this file I<are> updated by the binary
  491. installer, some of them may need to be hand-edited. I know no such
  492. data, please keep me informed if you find one.
  493.  
  494. =back
  495.  
  496. B<NOTE>. Because of a typo the binary installer of 5.00305
  497. would install a variable C<PERL_SHPATH> into F<Config.sys>. Please
  498. remove this variable and put C<L<PERL_SH_DIR>> instead.
  499.  
  500. =head2 Manual binary installation
  501.  
  502. As of version 5.00305, OS/2 perl binary distribution comes split
  503. into 11 components. Unfortunately, to enable configurable binary
  504. installation, the file paths in the zip files are not absolute, but
  505. relative to some directory.
  506.  
  507. Note that the extraction with the stored paths is still necessary
  508. (default with unzip, specify C<-d> to pkunzip). However, you
  509. need to know where to extract the files. You need also to manually
  510. change entries in F<Config.sys> to reflect where did you put the
  511. files. Note that if you have some primitive unzipper (like
  512. pkunzip), you may get a lot of warnings/errors during
  513. unzipping. Upgrade to C<(w)unzip>.
  514.  
  515. Below is the sample of what to do to reproduce the configuration on my
  516. machine:
  517.  
  518. =over 3
  519.  
  520. =item Perl VIO and PM executables (dynamically linked)
  521.  
  522.   unzip perl_exc.zip *.exe *.ico -d f:/emx.add/bin
  523.   unzip perl_exc.zip *.dll -d f:/emx.add/dll
  524.  
  525. (have the directories with C<*.exe> on PATH, and C<*.dll> on
  526. LIBPATH);
  527.  
  528. =item Perl_ VIO executable (statically linked)
  529.  
  530.   unzip perl_aou.zip -d f:/emx.add/bin
  531.  
  532. (have the directory on PATH);
  533.  
  534. =item Executables for Perl utilities
  535.  
  536.   unzip perl_utl.zip -d f:/emx.add/bin
  537.  
  538. (have the directory on PATH);
  539.  
  540. =item Main Perl library
  541.  
  542.   unzip perl_mlb.zip -d f:/perllib/lib
  543.  
  544. If this directory is preserved, you do not need to change
  545. anything. However, for perl to find it if it is changed, you need to
  546. C<set PERLLIB_PREFIX> in F<Config.sys>, see L<"PERLLIB_PREFIX">.
  547.  
  548. =item Additional Perl modules
  549.  
  550.   unzip perl_ste.zip -d f:/perllib/lib/site_perl
  551.  
  552. If you do not change this directory, do nothing. Otherwise put this
  553. directory and subdirectory F<./os2> in C<PERLLIB> or C<PERL5LIB>
  554. variable. Do not use C<PERL5LIB> unless you have it set already. See
  555. L<perl/"ENVIRONMENT">. 
  556.  
  557. =item Tools to compile Perl modules
  558.  
  559.   unzip perl_blb.zip -d f:/perllib/lib
  560.  
  561. If this directory is preserved, you do not need to change
  562. anything. However, for perl to find it if it is changed, you need to
  563. C<set PERLLIB_PREFIX> in F<Config.sys>, see L<"PERLLIB_PREFIX">.
  564.  
  565. =item Manpages for Perl and utilities
  566.  
  567.   unzip perl_man.zip -d f:/perllib/man
  568.  
  569. This directory should better be on C<MANPATH>. You need to have a
  570. working man to access these files.
  571.  
  572. =item Manpages for Perl modules
  573.  
  574.   unzip perl_mam.zip -d f:/perllib/man
  575.  
  576. This directory should better be on C<MANPATH>. You need to have a
  577. working man to access these files.
  578.  
  579. =item Source for Perl documentation
  580.  
  581.   unzip perl_pod.zip -d f:/perllib/lib
  582.  
  583. This is used by by C<perldoc> program (see L<perldoc>), and may be used to
  584. generate HTML documentation usable by WWW browsers, and
  585. documentation in zillions of other formats: C<info>, C<LaTeX>,
  586. C<Acrobat>, C<FrameMaker> and so on.
  587.  
  588. =item Perl manual in F<.INF> format
  589.  
  590.   unzip perl_inf.zip -d d:/os2/book
  591.  
  592. This directory should better be on C<BOOKSHELF>.
  593.  
  594. =item Pdksh
  595.  
  596.   unzip perl_sh.zip -d f:/bin
  597.  
  598. This is used by perl to run external commands which explicitly
  599. require shell, like the commands using I<redirection> and I<shell
  600. metacharacters>. It is also used instead of explicit F</bin/sh>.
  601.  
  602. Set C<PERL_SH_DIR> (see L<"PERL_SH_DIR">) if you move F<sh.exe> from
  603. the above location.
  604.  
  605. B<Note.> It may be possible to use some other sh-compatible shell
  606. (I<not tested>).
  607.  
  608. =back
  609.  
  610. After you installed the components you needed and updated the
  611. F<Config.sys> correspondingly, you need to hand-edit
  612. F<Config.pm>. This file resides somewhere deep in the location you
  613. installed your perl library, find it out by
  614.  
  615.   perl -MConfig -le "print $INC{'Config.pm'}"
  616.  
  617. You need to correct all the entries which look like file paths (they
  618. currently start with C<f:/>).
  619.  
  620. =head2 B<Warning>
  621.  
  622. The automatic and manual perl installation leave precompiled paths
  623. inside perl executables. While these paths are overwriteable (see
  624. L<"PERLLIB_PREFIX">, L<"PERL_SH_DIR">), one may get better results by
  625. binary editing of paths inside the executables/DLLs.
  626.  
  627. =head1 Accessing documentation
  628.  
  629. Depending on how you built/installed perl you may have (otherwise
  630. identical) Perl documentation in the following formats:
  631.  
  632. =head2 OS/2 F<.INF> file
  633.  
  634. Most probably the most convenient form. Under OS/2 view it as
  635.  
  636.   view perl
  637.   view perl perlfunc
  638.   view perl less
  639.   view perl ExtUtils::MakeMaker
  640.  
  641. (currently the last two may hit a wrong location, but this may improve
  642. soon). Under Win* see L<"SYNOPSIS">.
  643.  
  644. If you want to build the docs yourself, and have I<OS/2 toolkit>, run
  645.  
  646.     pod2ipf > perl.ipf
  647.  
  648. in F</perllib/lib/pod> directory, then
  649.  
  650.     ipfc /inf perl.ipf
  651.  
  652. (Expect a lot of errors during the both steps.) Now move it on your
  653. BOOKSHELF path.
  654.  
  655. =head2 Plain text
  656.  
  657. If you have perl documentation in the source form, perl utilities
  658. installed, and GNU groff installed, you may use 
  659.  
  660.     perldoc perlfunc
  661.     perldoc less
  662.     perldoc ExtUtils::MakeMaker
  663.  
  664. to access the perl documentation in the text form (note that you may get
  665. better results using perl manpages).
  666.  
  667. Alternately, try running pod2text on F<.pod> files.
  668.  
  669. =head2 Manpages
  670.  
  671. If you have man installed on your system, and you installed perl
  672. manpages, use something like this:
  673.  
  674.     man perlfunc
  675.     man 3 less
  676.     man ExtUtils.MakeMaker
  677.  
  678. to access documentation for different components of Perl. Start with
  679.  
  680.     man perl
  681.  
  682. Note that dot (F<.>) is used as a package separator for documentation
  683. for packages, and as usual, sometimes you need to give the section - C<3>
  684. above - to avoid shadowing by the I<less(1) manpage>.
  685.  
  686. Make sure that the directory B<above> the directory with manpages is
  687. on our C<MANPATH>, like this
  688.  
  689.   set MANPATH=c:/man;f:/perllib/man
  690.  
  691. =head2 HTML
  692.  
  693. If you have some WWW browser available, installed the Perl
  694. documentation in the source form, and Perl utilities, you can build
  695. HTML docs. Cd to directory with F<.pod> files, and do like this
  696.  
  697.     cd f:/perllib/lib/pod
  698.     pod2html
  699.  
  700. After this you can direct your browser the file F<perl.html> in this
  701. directory, and go ahead with reading docs, like this:
  702.  
  703.     explore file:///f:/perllib/lib/pod/perl.html
  704.  
  705. Alternatively you may be able to get these docs prebuilt from CPAN.
  706.  
  707. =head2 GNU C<info> files
  708.  
  709. Users of Emacs would appreciate it very much, especially with
  710. C<CPerl> mode loaded. You need to get latest C<pod2info> from C<CPAN>,
  711. or, alternately, prebuilt info pages.
  712.  
  713. =head2 F<.PDF> files
  714.  
  715. for C<Acrobat> are available on CPAN (for slightly old version of
  716. perl).
  717.  
  718. =head2 C<LaTeX> docs
  719.  
  720. can be constructed using C<pod2latex>.
  721.  
  722. =head1 BUILD
  723.  
  724. Here we discuss how to build Perl under OS/2. There is an alternative
  725. (but maybe older) view on L<http://www.shadow.net/~troc/os2perl.html>.
  726.  
  727. =head2 Prerequisites
  728.  
  729. You need to have the latest EMX development environment, the full
  730. GNU tool suite (gawk renamed to awk, and GNU F<find.exe>
  731. earlier on path than the OS/2 F<find.exe>, same with F<sort.exe>, to
  732. check use
  733.  
  734.   find --version
  735.   sort --version
  736.  
  737. ). You need the latest version of F<pdksh> installed as F<sh.exe>.
  738.  
  739. Check that you have B<BSD> libraries and headers installed, and - 
  740. optionally - Berkeley DB headers and libraries, and crypt.
  741.  
  742. Possible locations to get this from are
  743.  
  744.   ftp://hobbes.nmsu.edu/os2/unix/
  745.   ftp://ftp.cdrom.com/pub/os2/unix/
  746.   ftp://ftp.cdrom.com/pub/os2/dev32/
  747.   ftp://ftp.cdrom.com/pub/os2/emx09c/
  748.  
  749. It is reported that the following archives contain enough utils to
  750. build perl: gnufutil.zip, gnusutil.zip, gnututil.zip, gnused.zip,
  751. gnupatch.zip, gnuawk.zip, gnumake.zip and ksh527rt.zip.  Note that
  752. all these utilities are known to be available from LEO:
  753.  
  754.   ftp://ftp.leo.org/pub/comp/os/os2/leo/gnu
  755.  
  756. Make sure that no copies or perl are currently running.  Later steps
  757. of the build may fail since an older version of perl.dll loaded into
  758. memory may be found. 
  759.  
  760. Also make sure that you have F</tmp> directory on the current drive,
  761. and F<.> directory in your C<LIBPATH>. One may try to correct the
  762. latter condition by
  763.  
  764.   set BEGINLIBPATH .
  765.  
  766. if you use something like F<CMD.EXE> or latest versions of F<4os2.exe>.
  767.  
  768. Make sure your gcc is good for C<-Zomf> linking: run C<omflibs>
  769. script in F</emx/lib> directory.
  770.  
  771. Check that you have link386 installed. It comes standard with OS/2,
  772. but may be not installed due to customization. If typing
  773.  
  774.   link386
  775.  
  776. shows you do not have it, do I<Selective install>, and choose C<Link
  777. object modules> in I<Optional system utilities/More>. If you get into
  778. link386, press C<Ctrl-C>.
  779.  
  780. =head2 Getting perl source
  781.  
  782. You need to fetch the latest perl source (including developers
  783. releases). With some probability it is located in 
  784.  
  785.   http://www.perl.com/CPAN/src/5.0
  786.   http://www.perl.com/CPAN/src/5.0/unsupported
  787.  
  788. If not, you may need to dig in the indices to find it in the directory
  789. of the current maintainer.
  790.  
  791. Quick cycle of developers release may break the OS/2 build time to
  792. time, looking into 
  793.  
  794.   http://www.perl.com/CPAN/ports/os2/ilyaz/
  795.  
  796. may indicate the latest release which was publicly released by the
  797. maintainer. Note that the release may include some additional patches
  798. to apply to the current source of perl.
  799.  
  800. Extract it like this
  801.  
  802.   tar vzxf perl5.00409.tar.gz
  803.  
  804. You may see a message about errors while extracting F<Configure>. This is
  805. because there is a conflict with a similarly-named file F<configure>.
  806.  
  807. Change to the directory of extraction.
  808.  
  809. =head2 Application of the patches
  810.  
  811. You need to apply the patches in F<./os2/diff.*> and
  812. F<./os2/POSIX.mkfifo> like this:
  813.  
  814.   gnupatch -p0 < os2\POSIX.mkfifo
  815.   gnupatch -p0 < os2\diff.configure
  816.  
  817. You may also need to apply the patches supplied with the binary
  818. distribution of perl.
  819.  
  820. Note also that the F<db.lib> and F<db.a> from the EMX distribution
  821. are not suitable for multi-threaded compile (note that currently perl
  822. is not multithread-safe, but is compiled as multithreaded for
  823. compatibility with XFree86-OS/2). Get a corrected one from
  824.  
  825.   ftp://ftp.math.ohio-state.edu/pub/users/ilya/os2/db_mt.zip
  826.  
  827. To make C<-p> filetest work, one may also need to apply the following patch
  828. to EMX headers:
  829.  
  830.   --- /emx/include/sys/stat.h.orig    Thu May 23 13:48:16 1996
  831.   +++ /emx/include/sys/stat.h    Sun Jul 12 14:11:32 1998
  832.   @@ -53,7 +53,7 @@ struct stat
  833.    #endif
  834.  
  835.    #if !defined (S_IFMT)
  836.   -#define S_IFMT   0160000  /* Mask for file type */
  837.   +#define S_IFMT   0170000  /* Mask for file type */
  838.    #define S_IFIFO  0010000  /* Pipe */
  839.    #define S_IFCHR  0020000  /* Character device */
  840.    #define S_IFDIR  0040000  /* Directory */
  841.  
  842.  
  843. =head2 Hand-editing
  844.  
  845. You may look into the file F<./hints/os2.sh> and correct anything
  846. wrong you find there. I do not expect it is needed anywhere.
  847.  
  848. =head2 Making
  849.  
  850.   sh Configure -des -D prefix=f:/perllib
  851.  
  852. C<prefix> means: where to install the resulting perl library. Giving
  853. correct prefix you may avoid the need to specify C<PERLLIB_PREFIX>,
  854. see L<"PERLLIB_PREFIX">.
  855.  
  856. I<Ignore the message about missing C<ln>, and about C<-c> option to
  857. tr>. In fact if you can trace where the latter spurious warning
  858. comes from, please inform me.
  859.  
  860. Now
  861.  
  862.   make
  863.  
  864. At some moment the built may die, reporting a I<version mismatch> or
  865. I<unable to run F<perl>>. This means that most of the build has been
  866. finished, and it is the time to move the constructed F<perl.dll> to
  867. some I<absolute> location in LIBPATH. After this is done the build
  868. should finish without a lot of fuss. I<One can avoid the interruption
  869. if one has the correct prebuilt version of F<perl.dll> on LIBPATH, but
  870. probably this is not needed anymore, since F<miniperl.exe> is linked
  871. statically now.>
  872.  
  873. Warnings which are safe to ignore: I<mkfifo() redefined> inside
  874. F<POSIX.c>.
  875.  
  876. =head2 Testing
  877.  
  878. If you haven't yet moved perl.dll onto LIBPATH, do it now (alternatively, if
  879. you have a previous perl installation you'd rather not disrupt until this one
  880. is installed, copy perl.dll to the t directory).
  881.  
  882. Now run
  883.  
  884.   make test
  885.  
  886. Some tests (4..6) should fail. Some perl invocations should end in a
  887. segfault (system error C<SYS3175>). To get finer error reports, call
  888.  
  889.   perl t/harness
  890.  
  891. The report you get may look like
  892.  
  893.   Failed Test  Status Wstat Total Fail  Failed  List of failed
  894.   ---------------------------------------------------------------
  895.   io/fs.t                      26   11  42.31%  2-5, 7-11, 18, 25
  896.   lib/io_pipe.t     3   768     6   ??       %  ??
  897.   lib/io_sock.t     3   768     5   ??       %  ??
  898.   op/stat.t                    56    5   8.93%  3-4, 20, 35, 39
  899.   Failed 4/140 test scripts, 97.14% okay. 27/2937 subtests failed, 99.08% okay.
  900.  
  901. Note that using C<make test> target two more tests may fail: C<op/exec:1>
  902. because of (mis)feature of pdksh, and C<lib/posix:15>, which checks
  903. that the buffers are not flushed on C<_exit> (this is a bug in the test
  904. which assumes that tty output is buffered).
  905.  
  906. I submitted a patch to EMX which makes it possible to fork() with EMX 
  907. dynamic libraries loaded, which makes F<lib/io*> tests pass. This means
  908. that soon the number of failing tests may decrease yet more.
  909.  
  910. However, the test F<lib/io_udp.t> is disabled, since it never terminates, I
  911. do not know why. Comments/fixes welcome.
  912.  
  913. The reasons for failed tests are:
  914.  
  915. =over 8
  916.  
  917. =item F<io/fs.t>
  918.  
  919. Checks I<file system> operations. Tests:
  920.  
  921. =over 10
  922.  
  923. =item 2-5, 7-11
  924.  
  925. Check C<link()> and C<inode count> - nonesuch under OS/2.
  926.  
  927. =item 18
  928.  
  929. Checks C<atime> and C<mtime> of C<stat()> - I could not understand this test.
  930.  
  931. =item 25
  932.  
  933. Checks C<truncate()> on a filehandle just opened for write - I do not
  934. know why this should or should not work.
  935.  
  936. =back
  937.  
  938. =item F<lib/io_pipe.t>
  939.  
  940. Checks C<IO::Pipe> module. Some feature of EMX - test fork()s with
  941. dynamic extension loaded - unsupported now.
  942.  
  943. =item F<lib/io_sock.t>
  944.  
  945. Checks C<IO::Socket> module. Some feature of EMX - test fork()s
  946. with dynamic extension loaded - unsupported now.
  947.  
  948. =item F<op/stat.t>
  949.  
  950. Checks C<stat()>. Tests:
  951.  
  952. =over 4
  953.  
  954. =item 3
  955.  
  956. Checks C<inode count> - nonesuch under OS/2.
  957.  
  958. =item 4
  959.  
  960. Checks C<mtime> and C<ctime> of C<stat()> - I could not understand this test.
  961.  
  962. =item 20
  963.  
  964. Checks C<-x> - determined by the file extension only under OS/2.
  965.  
  966. =item 35
  967.  
  968. Needs F</usr/bin>.
  969.  
  970. =item 39
  971.  
  972. Checks C<-t> of F</dev/null>. Should not fail!
  973.  
  974. =back
  975.  
  976. =back
  977.  
  978. In addition to errors, you should get a lot of warnings. 
  979.  
  980. =over 4
  981.  
  982. =item A lot of C<bad free>
  983.  
  984. in databases related to Berkeley DB. This is a confirmed bug of
  985. DB. You may disable this warnings, see L<"PERL_BADFREE">.
  986.  
  987. =item Process terminated by SIGTERM/SIGINT
  988.  
  989. This is a standard message issued by OS/2 applications. *nix
  990. applications die in silence. It is considered a feature. One can
  991. easily disable this by appropriate sighandlers. 
  992.  
  993. However the test engine bleeds these message to screen in unexpected
  994. moments. Two messages of this kind I<should> be present during
  995. testing.
  996.  
  997. =item F<*/sh.exe>: ln: not found
  998.  
  999. =item C<ls>: /dev: No such file or directory
  1000.  
  1001. The last two should be self-explanatory. The test suite discovers that
  1002. the system it runs on is not I<that much> *nixish.
  1003.  
  1004. =back
  1005.  
  1006. A lot of C<bad free>... in databases, bug in DB confirmed on other
  1007. platforms. You may disable it by setting PERL_BADFREE environment variable
  1008. to 1.
  1009.  
  1010. =head2 Installing the built perl
  1011.  
  1012. If you haven't yet moved perl.dll onto LIBPATH, do it now.
  1013.  
  1014. Run
  1015.  
  1016.   make install
  1017.  
  1018. It would put the generated files into needed locations. Manually put
  1019. F<perl.exe>, F<perl__.exe> and F<perl___.exe> to a location on your
  1020. PATH, F<perl.dll> to a location on your LIBPATH.
  1021.  
  1022. Run
  1023.  
  1024.   make cmdscripts INSTALLCMDDIR=d:/ir/on/path
  1025.  
  1026. to convert perl utilities to F<.cmd> files and put them on
  1027. PATH. You need to put F<.EXE>-utilities on path manually. They are
  1028. installed in C<$prefix/bin>, here C<$prefix> is what you gave to
  1029. F<Configure>, see L<Making>.
  1030.  
  1031. =head2 C<a.out>-style build
  1032.  
  1033. Proceed as above, but make F<perl_.exe> (see L<"perl_.exe">) by
  1034.  
  1035.   make perl_
  1036.  
  1037. test and install by
  1038.  
  1039.   make aout_test
  1040.   make aout_install
  1041.  
  1042. Manually put F<perl_.exe> to a location on your PATH.
  1043.  
  1044. Since C<perl_> has the extensions prebuilt, it does not suffer from
  1045. the I<dynamic extensions + fork()> syndrome, thus the failing tests
  1046. look like
  1047.  
  1048.   Failed Test  Status Wstat Total Fail  Failed  List of failed
  1049.   ---------------------------------------------------------------
  1050.   io/fs.t                      26   11  42.31%  2-5, 7-11, 18, 25
  1051.   op/stat.t                    56    5   8.93%  3-4, 20, 35, 39
  1052.   Failed 2/118 test scripts, 98.31% okay. 16/2445 subtests failed, 99.35% okay.
  1053.  
  1054. B<Note.> The build process for C<perl_> I<does not know> about all the
  1055. dependencies, so you should make sure that anything is up-to-date,
  1056. say, by doing
  1057.  
  1058.   make perl.dll
  1059.  
  1060. first.
  1061.  
  1062. =head1 Build FAQ
  1063.  
  1064. =head2 Some C</> became C<\> in pdksh.
  1065.  
  1066. You have a very old pdksh. See L<Prerequisites>.
  1067.  
  1068. =head2 C<'errno'> - unresolved external
  1069.  
  1070. You do not have MT-safe F<db.lib>. See L<Prerequisites>.
  1071.  
  1072. =head2 Problems with tr or sed
  1073.  
  1074. reported with very old version of tr and sed.
  1075.  
  1076. =head2 Some problem (forget which ;-)
  1077.  
  1078. You have an older version of F<perl.dll> on your LIBPATH, which
  1079. broke the build of extensions.
  1080.  
  1081. =head2 Library ... not found
  1082.  
  1083. You did not run C<omflibs>. See L<Prerequisites>.
  1084.  
  1085. =head2 Segfault in make
  1086.  
  1087. You use an old version of GNU make. See L<Prerequisites>.
  1088.  
  1089. =head1 Specific (mis)features of OS/2 port
  1090.  
  1091. =head2 C<setpriority>, C<getpriority>
  1092.  
  1093. Note that these functions are compatible with *nix, not with the older
  1094. ports of '94 - 95. The priorities are absolute, go from 32 to -95,
  1095. lower is quicker. 0 is the default priority.
  1096.  
  1097. =head2 C<system()>
  1098.  
  1099. Multi-argument form of C<system()> allows an additional numeric
  1100. argument. The meaning of this argument is described in
  1101. L<OS2::Process>.
  1102.  
  1103. =head2 C<extproc> on the first line
  1104.  
  1105. If the first chars of a script are C<"extproc ">, this line is treated
  1106. as C<#!>-line, thus all the switches on this line are processed (twice
  1107. if script was started via cmd.exe).
  1108.  
  1109. =head2 Additional modules:
  1110.  
  1111. L<OS2::Process>, L<OS2::REXX>, L<OS2::PrfDB>, L<OS2::ExtAttr>. These
  1112. modules provide access to additional numeric argument for C<system>
  1113. and to the list of the running processes,
  1114. to DLLs having functions with REXX signature and to REXX runtime, to
  1115. OS/2 databases in the F<.INI> format, and to Extended Attributes.
  1116.  
  1117. Two additional extensions by Andreas Kaiser, C<OS2::UPM>, and
  1118. C<OS2::FTP>, are included into my ftp directory, mirrored on CPAN.
  1119.  
  1120. =head2 Prebuilt methods:
  1121.  
  1122. =over 4
  1123.  
  1124. =item C<File::Copy::syscopy>
  1125.  
  1126. used by C<File::Copy::copy>, see L<File::Copy>.
  1127.  
  1128. =item C<DynaLoader::mod2fname>
  1129.  
  1130. used by C<DynaLoader> for DLL name mangling.
  1131.  
  1132. =item  C<Cwd::current_drive()>
  1133.  
  1134. Self explanatory.
  1135.  
  1136. =item  C<Cwd::sys_chdir(name)>
  1137.  
  1138. leaves drive as it is.
  1139.  
  1140. =item  C<Cwd::change_drive(name)>
  1141.  
  1142.  
  1143. =item  C<Cwd::sys_is_absolute(name)>
  1144.  
  1145. means has drive letter and is_rooted.
  1146.  
  1147. =item  C<Cwd::sys_is_rooted(name)>
  1148.  
  1149. means has leading C<[/\\]> (maybe after a drive-letter:).
  1150.  
  1151. =item  C<Cwd::sys_is_relative(name)>
  1152.  
  1153. means changes with current dir.
  1154.  
  1155. =item  C<Cwd::sys_cwd(name)>
  1156.  
  1157. Interface to cwd from EMX. Used by C<Cwd::cwd>.
  1158.  
  1159. =item  C<Cwd::sys_abspath(name, dir)>
  1160.  
  1161. Really really odious function to implement. Returns absolute name of
  1162. file which would have C<name> if CWD were C<dir>.  C<Dir> defaults to the
  1163. current dir.
  1164.  
  1165. =item  C<Cwd::extLibpath([type])
  1166.  
  1167. Get current value of extended library search path. If C<type> is
  1168. present and I<true>, works with END_LIBPATH, otherwise with
  1169. C<BEGIN_LIBPATH>. 
  1170.  
  1171. =item  C<Cwd::extLibpath_set( path [, type ] )>
  1172.  
  1173. Set current value of extended library search path. If C<type> is
  1174. present and I<true>, works with END_LIBPATH, otherwise with
  1175. C<BEGIN_LIBPATH>. 
  1176.  
  1177. =back
  1178.  
  1179. (Note that some of these may be moved to different libraries -
  1180. eventually).
  1181.  
  1182.  
  1183. =head2 Misfeatures
  1184.  
  1185. =over 4
  1186.  
  1187. =item
  1188.  
  1189. Since L<flock(3)> is present in EMX, but is not functional, it is 
  1190. emulated by perl.  To disable the emulations, set environment variable
  1191. C<USE_PERL_FLOCK=0>.
  1192.  
  1193. =item
  1194.  
  1195. Here is the list of things which may be "broken" on
  1196. EMX (from EMX docs):
  1197.  
  1198. =over
  1199.  
  1200. =item *
  1201.  
  1202. The functions L<recvmsg(3)>, L<sendmsg(3)>, and L<socketpair(3)> are not
  1203. implemented.
  1204.  
  1205. =item *
  1206.  
  1207. L<sock_init(3)> is not required and not implemented.
  1208.  
  1209. =item *
  1210.  
  1211. L<flock(3)> is not yet implemented (dummy function).  (Perl has a workaround.)
  1212.  
  1213. =item *
  1214.  
  1215. L<kill(3)>:  Special treatment of PID=0, PID=1 and PID=-1 is not implemented.
  1216.  
  1217. =item *
  1218.  
  1219. L<waitpid(3)>:
  1220.  
  1221.       WUNTRACED
  1222.           Not implemented.
  1223.       waitpid() is not implemented for negative values of PID.
  1224.  
  1225. =back
  1226.  
  1227. Note that C<kill -9> does not work with the current version of EMX.
  1228.  
  1229. =item
  1230.  
  1231. Since F<sh.exe> is used for globing (see L<perlfunc/glob>), the bugs
  1232. of F<sh.exe> plague perl as well. 
  1233.  
  1234. In particular, uppercase letters do not work in C<[...]>-patterns with
  1235. the current pdksh.
  1236.  
  1237. =back
  1238.  
  1239. =head2 Modifications
  1240.  
  1241. Perl modifies some standard C library calls in the following ways:
  1242.  
  1243. =over 9
  1244.  
  1245. =item C<popen>
  1246.  
  1247. C<my_popen> uses F<sh.exe> if shell is required, cf. L<"PERL_SH_DIR">.
  1248.  
  1249. =item C<tmpnam>
  1250.  
  1251. is created using C<TMP> or C<TEMP> environment variable, via
  1252. C<tempnam>.
  1253.  
  1254. =item C<tmpfile>
  1255.  
  1256. If the current directory is not writable, file is created using modified
  1257. C<tmpnam>, so there may be a race condition.
  1258.  
  1259. =item C<ctermid>
  1260.  
  1261. a dummy implementation.
  1262.  
  1263. =item C<stat>
  1264.  
  1265. C<os2_stat> special-cases F</dev/tty> and F</dev/con>.
  1266.  
  1267. =item C<flock>
  1268.  
  1269. Since L<flock(3)> is present in EMX, but is not functional, it is 
  1270. emulated by perl.  To disable the emulations, set environment variable
  1271. C<USE_PERL_FLOCK=0>.
  1272.  
  1273. =back
  1274.  
  1275. =head1 Perl flavors
  1276.  
  1277. Because of idiosyncrasies of OS/2 one cannot have all the eggs in the
  1278. same basket (though EMX environment tries hard to overcome this
  1279. limitations, so the situation may somehow improve). There are 4
  1280. executables for Perl provided by the distribution:
  1281.  
  1282. =head2 F<perl.exe>
  1283.  
  1284. The main workhorse. This is a chimera executable: it is compiled as an
  1285. C<a.out>-style executable, but is linked with C<omf>-style dynamic
  1286. library F<perl.dll>, and with dynamic CRT DLL. This executable is a
  1287. VIO application.
  1288.  
  1289. It can load perl dynamic extensions, and it can fork(). Unfortunately,
  1290. with the current version of EMX it cannot fork() with dynamic
  1291. extensions loaded (may be fixed by patches to EMX).
  1292.  
  1293. B<Note.> Keep in mind that fork() is needed to open a pipe to yourself.
  1294.  
  1295. =head2 F<perl_.exe>
  1296.  
  1297. This is a statically linked C<a.out>-style executable. It can fork(),
  1298. but cannot load dynamic Perl extensions. The supplied executable has a
  1299. lot of extensions prebuilt, thus there are situations when it can
  1300. perform tasks not possible using F<perl.exe>, like fork()ing when
  1301. having some standard extension loaded. This executable is a VIO
  1302. application.
  1303.  
  1304. B<Note.> A better behaviour could be obtained from C<perl.exe> if it
  1305. were statically linked with standard I<Perl extensions>, but
  1306. dynamically linked with the I<Perl DLL> and CRT DLL. Then it would
  1307. be able to fork() with standard extensions, I<and> would be able to
  1308. dynamically load arbitrary extensions. Some changes to Makefiles and
  1309. hint files should be necessary to achieve this.
  1310.  
  1311. I<This is also the only executable with does not require OS/2.> The
  1312. friends locked into C<M$> world would appreciate the fact that this
  1313. executable runs under DOS, Win0.3*, Win0.95 and WinNT with an
  1314. appropriate extender. See L<"Other OSes">.
  1315.  
  1316. =head2 F<perl__.exe>
  1317.  
  1318. This is the same executable as F<perl___.exe>, but it is a PM
  1319. application. 
  1320.  
  1321. B<Note.> Usually STDIN, STDERR, and STDOUT of a PM
  1322. application are redirected to C<nul>. However, it is possible to see
  1323. them if you start C<perl__.exe> from a PM program which emulates a
  1324. console window, like I<Shell mode> of Emacs or EPM. Thus it I<is
  1325. possible> to use Perl debugger (see L<perldebug>) to debug your PM
  1326. application.
  1327.  
  1328. This flavor is required if you load extensions which use PM, like
  1329. the forthcoming C<Perl/Tk>.
  1330.  
  1331. =head2 F<perl___.exe>
  1332.  
  1333. This is an C<omf>-style executable which is dynamically linked to
  1334. F<perl.dll> and CRT DLL. I know no advantages of this executable
  1335. over C<perl.exe>, but it cannot fork() at all. Well, one advantage is
  1336. that the build process is not so convoluted as with C<perl.exe>.
  1337.  
  1338. It is a VIO application.
  1339.  
  1340. =head2 Why strange names?
  1341.  
  1342. Since Perl processes the C<#!>-line (cf. 
  1343. L<perlrun/DESCRIPTION>, L<perlrun/Switches>,
  1344. L<perldiag/"Not a perl script">, 
  1345. L<perldiag/"No Perl script found in input">), it should know when a
  1346. program I<is a Perl>. There is some naming convention which allows
  1347. Perl to distinguish correct lines from wrong ones. The above names are
  1348. almost the only names allowed by this convention which do not contain
  1349. digits (which have absolutely different semantics).
  1350.  
  1351. =head2 Why dynamic linking?
  1352.  
  1353. Well, having several executables dynamically linked to the same huge
  1354. library has its advantages, but this would not substantiate the
  1355. additional work to make it compile. The reason is stupid-but-quick
  1356. "hard" dynamic linking used by OS/2.
  1357.  
  1358. The address tables of DLLs are patched only once, when they are
  1359. loaded. The addresses of entry points into DLLs are guaranteed to be
  1360. the same for all programs which use the same DLL, which reduces the
  1361. amount of runtime patching - once DLL is loaded, its code is
  1362. read-only.
  1363.  
  1364. While this allows some performance advantages, this makes life
  1365. terrible for developers, since the above scheme makes it impossible
  1366. for a DLL to be resolved to a symbol in the .EXE file, since this
  1367. would need a DLL to have different relocations tables for the
  1368. executables which use it.
  1369.  
  1370. However, a Perl extension is forced to use some symbols from the perl
  1371. executable, say to know how to find the arguments provided on the perl
  1372. internal evaluation stack. The solution is that the main code of
  1373. interpreter should be contained in a DLL, and the F<.EXE> file just loads
  1374. this DLL into memory and supplies command-arguments.
  1375.  
  1376. This I<greatly> increases the load time for the application (as well as
  1377. the number of problems during compilation). Since interpreter is in a DLL,
  1378. the CRT is basically forced to reside in a DLL as well (otherwise
  1379. extensions would not be able to use CRT).
  1380.  
  1381. =head2 Why chimera build?
  1382.  
  1383. Current EMX environment does not allow DLLs compiled using Unixish
  1384. C<a.out> format to export symbols for data. This forces C<omf>-style
  1385. compile of F<perl.dll>.
  1386.  
  1387. Current EMX environment does not allow F<.EXE> files compiled in
  1388. C<omf> format to fork(). fork() is needed for exactly three Perl
  1389. operations:
  1390.  
  1391. =over 4
  1392.  
  1393. =item explicit fork()
  1394.  
  1395. in the script, and
  1396.  
  1397. =item open FH, "|-"
  1398.  
  1399. =item open FH, "-|"
  1400.  
  1401. opening pipes to itself.
  1402.  
  1403. =back
  1404.  
  1405. While these operations are not questions of life and death, a lot of
  1406. useful scripts use them. This forces C<a.out>-style compile of
  1407. F<perl.exe>.
  1408.  
  1409.  
  1410. =head1 ENVIRONMENT
  1411.  
  1412. Here we list environment variables with are either OS/2- and DOS- and
  1413. Win*-specific, or are more important under OS/2 than under other OSes.
  1414.  
  1415. =head2 C<PERLLIB_PREFIX>
  1416.  
  1417. Specific for EMX port. Should have the form
  1418.  
  1419.   path1;path2
  1420.  
  1421. or
  1422.  
  1423.   path1 path2
  1424.  
  1425. If the beginning of some prebuilt path matches F<path1>, it is
  1426. substituted with F<path2>.
  1427.  
  1428. Should be used if the perl library is moved from the default
  1429. location in preference to C<PERL(5)LIB>, since this would not leave wrong
  1430. entries in @INC.  Say, if the compiled version of perl looks for @INC
  1431. in F<f:/perllib/lib>, and you want to install the library in
  1432. F<h:/opt/gnu>, do
  1433.  
  1434.   set PERLLIB_PREFIX=f:/perllib/lib;h:/opt/gnu
  1435.  
  1436. =head2 C<PERL_BADLANG>
  1437.  
  1438. If 1, perl ignores setlocale() failing. May be useful with some
  1439. strange I<locale>s.
  1440.  
  1441. =head2 C<PERL_BADFREE>
  1442.  
  1443. If 1, perl would not warn of in case of unwarranted free(). May be
  1444. useful in conjunction with the module DB_File, since Berkeley DB
  1445. memory handling code is buggy.
  1446.  
  1447. =head2 C<PERL_SH_DIR>
  1448.  
  1449. Specific for EMX port. Gives the directory part of the location for
  1450. F<sh.exe>.
  1451.  
  1452. =head2 C<USE_PERL_FLOCK>
  1453.  
  1454. Specific for EMX port. Since L<flock(3)> is present in EMX, but is not 
  1455. functional, it is emulated by perl.  To disable the emulations, set 
  1456. environment variable C<USE_PERL_FLOCK=0>.
  1457.  
  1458. =head2 C<TMP> or C<TEMP>
  1459.  
  1460. Specific for EMX port. Used as storage place for temporary files, most
  1461. notably C<-e> scripts.
  1462.  
  1463. =head1 Evolution
  1464.  
  1465. Here we list major changes which could make you by surprise.
  1466.  
  1467. =head2 Priorities
  1468.  
  1469. C<setpriority> and C<getpriority> are not compatible with earlier
  1470. ports by Andreas Kaiser. See C<"setpriority, getpriority">.
  1471.  
  1472. =head2 DLL name mangling
  1473.  
  1474. With the release 5.003_01 the dynamically loadable libraries
  1475. should be rebuilt. In particular, DLLs are now created with the names
  1476. which contain a checksum, thus allowing workaround for OS/2 scheme of
  1477. caching DLLs.
  1478.  
  1479. =head2 Threading
  1480.  
  1481. As of release 5.003_01 perl is linked to multithreaded CRT
  1482. DLL.  If perl itself is not compiled multithread-enabled, so will not be perl
  1483. malloc(). However, extensions may use multiple thread on their own
  1484. risk. 
  1485.  
  1486. Needed to compile C<Perl/Tk> for XFree86-OS/2 out-of-the-box.
  1487.  
  1488. =head2 Calls to external programs
  1489.  
  1490. Due to a popular demand the perl external program calling has been
  1491. changed wrt Andreas Kaiser's port.  I<If> perl needs to call an
  1492. external program I<via shell>, the F<f:/bin/sh.exe> will be called, or
  1493. whatever is the override, see L<"PERL_SH_DIR">.
  1494.  
  1495. Thus means that you need to get some copy of a F<sh.exe> as well (I
  1496. use one from pdksh). The drive F<F:> above is set up automatically during
  1497. the build to a correct value on the builder machine, but is
  1498. overridable at runtime,
  1499.  
  1500. B<Reasons:> a consensus on C<perl5-porters> was that perl should use
  1501. one non-overridable shell per platform. The obvious choices for OS/2
  1502. are F<cmd.exe> and F<sh.exe>. Having perl build itself would be impossible
  1503. with F<cmd.exe> as a shell, thus I picked up C<sh.exe>. Thus assures almost
  1504. 100% compatibility with the scripts coming from *nix. As an added benefit 
  1505. this works as well under DOS if you use DOS-enabled port of pdksh 
  1506. (see L<"Prerequisites">).
  1507.  
  1508. B<Disadvantages:> currently F<sh.exe> of pdksh calls external programs
  1509. via fork()/exec(), and there is I<no> functioning exec() on
  1510. OS/2. exec() is emulated by EMX by asyncroneous call while the caller
  1511. waits for child completion (to pretend that the C<pid> did not change). This
  1512. means that 1 I<extra> copy of F<sh.exe> is made active via fork()/exec(),
  1513. which may lead to some resources taken from the system (even if we do
  1514. not count extra work needed for fork()ing).
  1515.  
  1516. Note that this a lesser issue now when we do not spawn F<sh.exe>
  1517. unless needed (metachars found).
  1518.  
  1519. One can always start F<cmd.exe> explicitly via
  1520.  
  1521.   system 'cmd', '/c', 'mycmd', 'arg1', 'arg2', ...
  1522.  
  1523. If you need to use F<cmd.exe>, and do not want to hand-edit thousands of your
  1524. scripts, the long-term solution proposed on p5-p is to have a directive
  1525.  
  1526.   use OS2::Cmd;
  1527.  
  1528. which will override system(), exec(), C<``>, and
  1529. C<open(,'...|')>. With current perl you may override only system(),
  1530. readpipe() - the explicit version of C<``>, and maybe exec(). The code
  1531. will substitute the one-argument call to system() by
  1532. C<CORE::system('cmd.exe', '/c', shift)>.
  1533.  
  1534. If you have some working code for C<OS2::Cmd>, please send it to me,
  1535. I will include it into distribution. I have no need for such a module, so
  1536. cannot test it.
  1537.  
  1538. For the details of the current situation with calling external programs,
  1539. see L<Starting OS/2 (and DOS) programs under Perl>.
  1540.  
  1541. =over
  1542.  
  1543. =item
  1544.  
  1545. External scripts may be called by name.  Perl will try the same extensions
  1546. as when processing B<-S> command-line switch.
  1547.  
  1548. =back
  1549.  
  1550. =head2 Memory allocation
  1551.  
  1552. Perl uses its own malloc() under OS/2 - interpreters are usually malloc-bound
  1553. for speed, but perl is not, since its malloc is lightning-fast. 
  1554. Unfortunately, it is also quite frivolous with memory usage as well.
  1555.  
  1556. Since kitchen-top machines are usually low on memory, perl is compiled with
  1557. all the possible memory-saving options. This probably makes perl's 
  1558. malloc() as greedy with memory as the neighbor's malloc(), but still
  1559. much quickier. Note that this is true only for a "typical" usage,
  1560. it is possible that the perl malloc will be worse for some very special usage.
  1561.  
  1562. Combination of perl's malloc() and rigid DLL name resolution creates
  1563. a special problem with library functions which expect their return value to
  1564. be free()d by system's free(). To facilitate extensions which need to call 
  1565. such functions, system memory-allocation functions are still available with
  1566. the prefix C<emx_> added. (Currently only DLL perl has this, it should 
  1567. propagate to F<perl_.exe> shortly.)
  1568.  
  1569. =cut
  1570.  
  1571. OS/2 extensions
  1572. ~~~~~~~~~~~~~~~
  1573. I include 3 extensions by Andreas Kaiser, OS2::REXX, OS2::UPM, and OS2::FTP, 
  1574. into my ftp directory, mirrored on CPAN. I made
  1575. some minor changes needed to compile them by standard tools. I cannot 
  1576. test UPM and FTP, so I will appreciate your feedback. Other extensions
  1577. there are OS2::ExtAttr, OS2::PrfDB for tied access to EAs and .INI
  1578. files - and maybe some other extensions at the time you read it.
  1579.  
  1580. Note that OS2 perl defines 2 pseudo-extension functions
  1581. OS2::Copy::copy and DynaLoader::mod2fname (many more now, see
  1582. L<Prebuilt methods>).
  1583.  
  1584. The -R switch of older perl is deprecated. If you need to call a REXX code
  1585. which needs access to variables, include the call into a REXX compartment
  1586. created by 
  1587.     REXX_call {...block...};
  1588.  
  1589. Two new functions are supported by REXX code, 
  1590.     REXX_eval 'string';
  1591.     REXX_eval_with 'string', REXX_function_name => \&perl_sub_reference;
  1592.  
  1593. If you have some other extensions you want to share, send the code to
  1594. me.  At least two are available: tied access to EA's, and tied access
  1595. to system databases.
  1596.  
  1597. =head1 AUTHOR
  1598.  
  1599. Ilya Zakharevich, ilya@math.ohio-state.edu
  1600.  
  1601. =head1 SEE ALSO
  1602.  
  1603. perl(1).
  1604.  
  1605. =cut
  1606.  
  1607.